home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / POPBOX.HDR < prev    next >
Text File  |  1994-04-25  |  1KB  |  46 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _PopBox( nTmax, nLMax, nBMax, nRMax, nType, cFill ) --> NIL
  8.  
  9. PARAMETERS:
  10.  
  11. nTMax : Top Row
  12. nLMax : Left Column
  13. nBMax : Bottom Row
  14. nRMax : Right Column
  15. nType : Type of Box Characters to use
  16. cFill : Character to use to fill box (Default SPACE)
  17.  
  18. SHORT:
  19.  
  20. "Exploding" screen boxes.
  21.  
  22. DESCRIPTION:
  23.  
  24. _PopBox() "explodes" a box onto the screen stopping at the given coordinates.
  25. Optionally, you may specify the box characters. Default box is Double
  26. Top/Single Side.
  27.  
  28. NOTE:
  29.  
  30. Due to the different CPU speeds of various computers, the box may "explode"
  31. so fast as to be unnoticeable.  This can be controlled by use of a
  32. DOS environment variable
  33.  
  34. SET BOXDELAY=6000
  35.  
  36. This value is detected if present and used as a delay factor between each
  37. step of the "explosion" to slow the process down on fast computers.
  38.  
  39. EXAMPLE:
  40.  
  41. _PopBox(10,10,15,70)
  42.  
  43. Result: All default values except for coordinates.
  44.  
  45. ******************************************************************************/
  46.